home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / colordlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  911 b   |  29 lines

  1. //---------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //---------------------------------------------------------------------------
  5. #include <vcl.h>
  6. #pragma hdrstop
  7. //---------------------------------------------------------------------------
  8. USEFILE("readme.txt");
  9. USERES("colordlg.res");
  10. USEFORM("mainform.cpp", Form1);
  11. //---------------------------------------------------------------------
  12. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  13. {
  14.    try
  15.    {
  16.       Application->Initialize();
  17.       Application->CreateForm(__classid(TForm1), &Form1);
  18.       Application->Run();
  19.    }
  20.    catch (Exception &exception)
  21.    {
  22.       Application->ShowException(&exception);
  23.    }
  24.  
  25.  
  26.     return 0;
  27. }
  28. //---------------------------------------------------------------------------
  29.